type crypto/tls.cipherSuiteTLS13

13 uses

	crypto/tls (current package)
		cipher_suites.go#L196: type cipherSuiteTLS13 struct {
		cipher_suites.go#L213: var cipherSuitesTLS13 = []*cipherSuiteTLS13{ // TODO: replace with a map.
		cipher_suites.go#L664: func mutualCipherSuiteTLS13(have []uint16, want uint16) *cipherSuiteTLS13 {
		cipher_suites.go#L673: func cipherSuiteTLS13ByID(id uint16) *cipherSuiteTLS13 {
		conn.go#L230: func (hc *halfConn) setTrafficSecret(suite *cipherSuiteTLS13, level QUICEncryptionLevel, secret []byte) {
		conn.go#L1686: func (c *Conn) setReadTrafficSecret(suite *cipherSuiteTLS13, level QUICEncryptionLevel, secret []byte, locked bool) error {
		conn.go#L1705: func (c *Conn) setWriteTrafficSecret(suite *cipherSuiteTLS13, level QUICEncryptionLevel, secret []byte) {
		handshake_client_tls13.go#L36: 	suite         *cipherSuiteTLS13
		handshake_server_tls13.go#L53: 	suite           *cipherSuiteTLS13
		key_schedule.go#L24: func (c *cipherSuiteTLS13) nextTrafficSecret(trafficSecret []byte) []byte {
		key_schedule.go#L29: func (c *cipherSuiteTLS13) trafficKey(trafficSecret []byte) (key, iv []byte) {
		key_schedule.go#L38: func (c *cipherSuiteTLS13) finishedHash(baseKey []byte, transcript hash.Hash) []byte {
		key_schedule.go#L47: func (c *cipherSuiteTLS13) exportKeyingMaterial(s *tls13.MasterSecret, transcript hash.Hash) func(string, []byte, int) ([]byte, error) {